4d2d14711609cd4ce62121fe9cd42dc536b5d1c0,platform/platform-impl/src/com/intellij/openapi/components/impl/stores/ProjectStoreImpl.java,ProjectStoreImpl,getLocation,#,253
Before Change
@Nullable
public String getLocation() {
if (myScheme == StorageScheme.DEFAULT) {
return getProjectFilePath();
}
else {
final VirtualFile baseDir = getProjectBaseDir();
After Change
@Nullable
public String getLocation() {
if (myCachedLocation == null) {
if (myScheme == StorageScheme.DEFAULT) {
myCachedLocation = getProjectFilePath();
}
else {
final VirtualFile baseDir = getProjectBaseDir();